@font-face {
  font-family: "PAYBACKLight";
  src: url("../media/fonts/payback_light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  font-size: 16px;
}
@media (max-width: 900px) {
  :root {
    font-size: 12px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

a {
  text-decoration: none;
  color: #003eb0;
  transition: text-decoration 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-text-decoration 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}

.a-btn {
  font-size: 1rem;
  font-weight: 400;
  color: #f5f5f5;
  background-color: #003eb0;
  border: 1px solid #f5f5f5;
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
}
.a-btn:hover {
  background-color: rgb(0, 44.0340909091, 125);
}

.flex,
.col,
.row {
  display: flex;
  min-width: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.row {
  flex-direction: row;
}
@media (max-width: 900px) {
  .row {
    flex-direction: column;
  }
}

.col {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.content {
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  padding: 3.1rem;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 900px) {
  .content {
    -webkit-hyphens: none;
    hyphens: none;
  }
}

.super-header {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding: 0.1rem 1rem;
  font-size: 1.3rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 2;
  border-radius: 5px;
  border: 1px solid #f5f5f5;
}

.title {
  position: relative;
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  padding: 0 0 11px 0;
  color: #003eb0;
}

.header {
  position: relative;
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  padding: 0 0 11px 0;
  color: #003eb0;
}

.sub-header {
  position: relative;
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: rgb(23, 104.7272727273, 255);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .sub-header {
    font-size: 1.3rem;
  }
}

.text {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 1.5;
}

.center {
  align-items: center;
  justify-content: center;
}

.v-center {
  align-items: center;
}

.h-center {
  justify-content: center;
}

.spacer {
  width: 10%;
}

.blurry {
  background: rgba(236, 241, 245, 0.1411764706);
  mix-blend-mode: normal;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.s {
  width: 33.33%;
}
@media (max-width: 900px) {
  .s {
    width: 100vw;
  }
}

.m {
  width: 54.32%;
}
@media (max-width: 900px) {
  .m {
    width: 100vw;
  }
}

.l {
  width: 75%;
}
@media (max-width: 900px) {
  .l {
    width: 100vw;
  }
}

.fw {
  width: 100vw;
}

.fh {
  height: 100vh;
}

.tag {
  display: inline-block;
  position: relative;
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  padding: 0.1rem 0.5rem;
  margin: 0.15rem 0.2rem;
  border-radius: 5px;
}

.orange {
  background-color: rgba(255, 87, 34, 0.1);
  border: 1px solid #ff5722;
}

.blue {
  background-color: rgba(0, 62, 176, 0.1);
  border: 1px solid #003eb0;
}

.green {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
}

.tooltip {
  position: absolute;
  background: #0a0f18;
  font-family: "Inter", sans-serif;
  color: #f5f5f5;
  padding: 0.3rem;
  border-radius: 4px;
  border: 1px solid #f5f5f5;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
  max-width: 250px;
}

.tooltip.visible {
  opacity: 1;
}

.has-tooltip {
  cursor: help;
}

.section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}
.section[data-theme=light] {
  border-radius: 5px;
  background: rgba(139.3870967742, 146.6129032258, 146.6129032258, 0.141);
  mix-blend-mode: normal;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #121212;
}
.section[data-theme=dark] {
  border-radius: 5px;
  border: 1px solid #f5f5f5;
  background: rgba(139.3870967742, 146.6129032258, 146.6129032258, 0.141);
  mix-blend-mode: normal;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #f5f5f5;
}

.connects {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  font-size: 2rem;
}
.connects[data-theme=dark] a {
  color: #f5f5f5;
  transition: color 0.3s ease;
}
.connects[data-theme=dark] a:hover {
  color: #003eb0;
}
.connects[data-theme=light] a {
  color: #121212;
  transition: color 0.3s ease;
}
.connects[data-theme=light] a:hover {
  color: #003eb0;
}

footer {
  flex-shrink: 0;
  margin: 0;
  border-radius: 5px;
  color: #121212;
  background: rgba(139.3870967742, 146.6129032258, 146.6129032258, 0.141);
  mix-blend-mode: normal;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 900px) {
  footer {
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
}
footer .copyright {
  width: 75%;
}
footer .connects {
  width: 25%;
}
@media (max-width: 900px) {
  footer .copyright {
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .connects {
    margin-top: 1rem;
    justify-content: space-between;
    width: 60%;
  }
}

.hidden {
  display: none;
}

.error {
  position: absolute;
  top: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem;
  margin: 1rem;
  background-color: rgba(255, 0, 0, 0.7);
  border-radius: 5px;
  font-weight: 400;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  z-index: 2000;
}

.show-error {
  opacity: 1;
}

.app-name-text {
  font-size: 1rem;
  color: #f5f5f5;
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  padding: 0;
  margin: 0 0 0.25rem 0;
}

#summary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
#summary .summary-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  margin: 1rem;
  background-color: #003eb0;
  color: #f5f5f5;
  border-radius: 5px;
}
#summary .summary-card .summary-title {
  font-family: "PAYBACKLight", "Montserrat", sans-serif;
  font-size: 1.6rem;
}
#summary .summary-card .summary-text {
  font-weight: 600;
}/*# sourceMappingURL=main.css.map */